home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19971216-19980424 / 000010_news@newsmaster….columbia.edu _Thu Dec 18 18:41:51 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id SAA16967
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Thu, 18 Dec 1997 18:41:51 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id SAA14592
  7.     for kermit.misc@watsun; Thu, 18 Dec 1997 18:41:51 -0500 (EST)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: "take too long" error
  12. Date: 18 Dec 1997 23:41:50 GMT
  13. Organization: Columbia University
  14. Lines: 19
  15. Message-ID: <67ccbu$f85$1@apakabar.cc.columbia.edu>
  16. References: <882486099.405733385@dejanews.com>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:8170
  19.  
  20. In article <882486099.405733385@dejanews.com>,  <dbl@real-data.com> wrote:
  21. : i am running WinNT 4.0 with the K95 we bought this summer (v. 13).  i
  22. : have a .ksc that is about 8K bytes and has about 200+ lines. it acts fine
  23. : till i add line (like "echo {hello}" (it doesnt matter what, or i add
  24. : several comment lines) then i get the error below.  am i running into
  25. : some limit?  i have looked in the manual, in the "help files" and on the
  26. : kermit page. what am i missing?
  27. : ...
  28. : Beginining to process the list file (c:\k95\\file.lst) . . .
  29. : ?Error in TAKE command file: Line too long or contains NUL characters
  30. This usually means that a command in your KSC file is longer than the
  31. command buffer.  Note that a macro definition is a single command, even if
  32. it is continued on many lines.  The limit in Kermit 95 is 4K.  If you have
  33. a macro definition that is longer than 4K, you'll need to break it up into
  34. "submacros".  The same applies to FOR and WHILE loops, XIF-ELSE
  35. constructions, and SWITCH statements.
  36.  
  37. - Frank